home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 July: Mac OS SDK / Dev.CD Jul 00 SDK2.toast / Development Kits / Cross Platform / QuickTime 4.1.2 Windows SDK / RIncludes / IsochronousDataHandler.r < prev    next >
Encoding:
Text File  |  2000-04-12  |  1.2 KB  |  40 lines  |  [TEXT/R*ch]

  1. /*
  2.      File:        IsochronousDataHandler.r
  3.  
  4.      Contains:    The defines the client API to an Isochronous Data Handler, which is
  5.  
  6.      Version:    Technology:    xxx put version here xxx
  7.                  Release:    QuickTime 4.1
  8.  
  9.      Copyright:    © 1997-1999 by Apple Computer, Inc., all rights reserved.
  10.  
  11.      Bugs?:        For bug reports, consult the following page on
  12.                  the World Wide Web:
  13.  
  14.                      http://developer.apple.com/bugreporter/
  15.  
  16. */
  17. //
  18. // Check for Prior Inclusion of IsochronousDataHandler.h
  19. //    If this header is trying to be included via a C path, make it act
  20. //    as a NOP.  This will allow both Rez & C files to get to use the
  21. //    contants for the component type, subtype, and interface version.
  22. #ifndef __ISOCHRONOUSDATAHANDLER__
  23.  
  24. #ifndef __ISOCHRONOUSDATAHANDLER_R__
  25. #define __ISOCHRONOUSDATAHANDLER_R__
  26.  
  27. #ifndef __CONDITIONALMACROS_R__
  28. #include "ConditionalMacros.r"
  29. #endif
  30.  
  31. #define kIDHComponentType                 'ihlr'                /*  Component type */
  32. #define kIDHSubtypeDV                     'dv  '                /*  Subtype for DV (over FireWire) */
  33. #define kIDHSubtypeFireWireConference     'fwc '                /*  Subtype for FW Conference */
  34.  
  35. #define kIDHInterfaceVersion1             0x0001                /*  Initial relase (Summer '99) */
  36. #endif /* ifndef __ISOCHRONOUSDATAHANDLER__ */
  37.  
  38. #endif /* __ISOCHRONOUSDATAHANDLER_R__ */
  39.  
  40.